博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
动态menu导航条以及treeview树
阅读量:4969 次
发布时间:2019-06-12

本文共 5437 字,大约阅读时间需要 18 分钟。

1.menu表数据

2.在后台生成html内容后,前台利用nav-h.css生成menu导航条,利用Jquery的treeview插件生成menu树

前台coding:

   

后台coding:

protected void Page_Load(object sender, EventArgs e)        {            if (!IsPostBack)            {                string menuHtml = string.Empty;                menuHtml = BuildMenuWithRoot(null, string.Empty, "Tree");                tree.InnerHtml = menuHtml;                menuHtml = BuildMenuWithRoot(null, string.Empty, "Menu");                menu.InnerHtml = menuHtml;            }        }        public string BuildMenuWithRoot(int? parentId, string str, string type)        {            IEnumerable
menus = GetMenuByParentId(parentId); foreach (menu m in menus) { try { str += "
  • " + m.Description + ""; str += BuildMenuWithRoot(m.Id, string.Empty, type); str += "
  • "; } catch { } } string idstr = string.Empty; if (type == "Menu") idstr = " id=\"nav\""; else if (type == "Tree") idstr = " id=\"menuTree\""; if (menus.Count() > 0) str = "
    " + str+""; return str; } public IEnumerable
    GetMenuByParentId(int? parentId) { WorkPermitDataContext db = new WorkPermitDataContext(); var query = from m in db.menus where (parentId != null && m.ParentId == parentId) || (parentId == null && m.ParentId == null) orderby m.OrderNumber select m; return query.AsEnumerable(); }

    生成的menu树html:

    menu树的浏览器效果:

     

    生成的menu导航条html:

    menu导航的浏览器效果:

     

    3.从上面可以看出,由于其它所有menu都是由root根节点生成,所以显示的树状结构并不符合我们的使用习惯,加以改进

    后台coding:

    public string BuildMenu(int? parentId, string str, string type)        {            IEnumerable
    menus = GetMenuByParentId(parentId); foreach (menu m in menus) { try { if (parentId != null) str += "
  • " + m.Description + ""; str += BuildMenu(m.Id, string.Empty, type); if (parentId != null) str += "
  • "; } catch { } } string idstr = string.Empty; if (menus.Count() > 0) { if (parentId == null) { if (type == "Menu") idstr = "
      "; if (type == "Tree") idstr = "
        "; str = idstr + "
      • Home
      • " + str.Substring(4, str.Length - 9) + "
      "; } else str = "
        " + str + "
      "; } return str; }

    生成的menu树html

    menu树浏览器效果

    生成的menu导航条html

    menu导航条浏览器效果

    4.使用到的treeview插件可从官网下载
    nav-h.css内容如下

    li:hover ul, li.over ul{ display:block;}ul#nav {	position: relative;	}ul#nav ul {	position: absolute; display: none; TOP: 100%; right: 0px;}ul#nav ul ul {	TOP: 0px; right: 100%}ul#nav ul ul ul {	TOP: 0px; right: 100%}ul#nav LI {	position: relative; display: inline; FLOAT: left;}ul#nav ul LI {	 display: block;width:250px}ul#nav A {	 display: block;  background: #ddd; FLOAT: left; HEIGHT: 1%; COLOR: #666; BORDER-TOP: #fff 1px solid; BORDER-RIGHT: #fff 1px solid; TEXT-DECORATION: none; padding:3px 20px}ul#nav A:hover {	background: #bbb; COLOR: #fff}ul#nav LI:hover A {	background: #bbb; COLOR: #fff; }ul#nav LI:hover LI A {	background: #bbb; FLOAT: none ;padding:3px 6px;}ul#nav LI:hover LI A:hover {	background: #999}ul#nav LI:hover LI:hover A {	background: #999}ul#nav LI:hover LI:hover LI A {	background: #999}ul#nav LI:hover LI:hover LI A:hover {	background: #666}ul#nav LI:hover LI:hover LI:hover A {	background: #666}ul#nav LI:hover LI:hover LI:hover LI A {	background: #666}ul#nav LI:hover LI:hover LI:hover LI A:hover {	background: #333}ul#nav LI:hover ul ul {	display: none}ul#nav LI:hover ul ul ul {	display: none}ul#nav LI:hover ul {	display: block}ul#nav ul LI:hover ul {	display: block}ul#nav ul ul LI:hover ul {	display: block}

     

    转载于:https://www.cnblogs.com/sui84/p/6777193.html

    你可能感兴趣的文章
    前端之css
    查看>>
    Procedure to Operate the Coal Grinding Mill
    查看>>
    ps -C
    查看>>
    做好单元测试需要保证的三个独立
    查看>>
    JavaScript小例子4
    查看>>
    会话管理-0.2.Session和Cookie的区别
    查看>>
    中文乱码 encodeURI来解决URL传递时的中文问题
    查看>>
    比数字工具更好用的纸和笔
    查看>>
    【转载】SQL INSERT INTO SELECT 语句
    查看>>
    Umbraco中的权限体系结构
    查看>>
    hdu 1312
    查看>>
    UVa 624
    查看>>
    c#入门经典笔记第六章
    查看>>
    datalist 分页
    查看>>
    M25-14
    查看>>
    .NET 通过 NPOI 操作 Excel
    查看>>
    Delphi XE2 之 FireMonkey 入门(3) - 关于 TPosition
    查看>>
    Eclipse快捷键功能
    查看>>
    编译器错误消息: CS0016: 未能写入输出文件“c:/Windows/Microsoft.NET/Framework/v2.0.50727/....dll”--“拒绝访问。...
    查看>>
    UBuntu CMake使用示例
    查看>>